home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
arrays
/
arrtest3.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1995-12-22
|
395b
|
27 lines
unit Arrtest3;
interface
uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
StdCtrls, ExtCtrls;
type
TSortDlg = class(TForm)
OKBtn: TBitBtn;
CancelBtn: TBitBtn;
GrpSortOrder: TRadioGroup;
private
{ Private declarations }
public
{ Public declarations }
end;
var
SortDlg: TSortDlg;
implementation
{$R *.DFM}
end.